home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Includes / AEAHandlerOpenDoc.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  471 b   |  22 lines

  1. /*    ====================
  2.  *    AEAHandlerOpenDoc.hh
  3.  *    ====================
  4.  *    
  5.  *    Implemented by AEAHandlerOpenDoc.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include <Files.h>
  11.  
  12. #include "AEAHandler.hh"
  13.  
  14. class AEAHandlerOpenDoc : public AEAHandler {
  15. public:
  16.     AEAHandlerOpenDoc();
  17.     virtual ~AEAHandlerOpenDoc();
  18.     virtual void HandleEventSelf(const AEADescAppleEvent &inAppleEvent, AEADescAppleEvent &inReply);
  19.     virtual void NotifyAppOpenDocEvent() = 0;
  20.     virtual void DoOpenDoc(FSSpec &inFSS);
  21. };
  22.